home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / publishDialog.xul < prev    next >
Extensible Markup Language  |  2007-09-24  |  4KB  |  110 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is OEone Calendar Code, released October 31st, 2001.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - OEone Corporation.
  19.    - Portions created by the Initial Developer are Copyright (C) 2001
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s): Mike Potter <mikep@oeone.com>
  23.    -
  24.    - Alternatively, the contents of this file may be used under the terms of
  25.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  26.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.    - in which case the provisions of the GPL or the LGPL are applicable instead
  28.    - of those above. If you wish to allow use of your version of this file only
  29.    - under the terms of either the GPL or the LGPL, and not to allow others to
  30.    - use your version of this file under the terms of the MPL, indicate your
  31.    - decision by deleting the provisions above and replace them with the notice
  32.    - and other provisions required by the LGPL or the GPL. If you do not delete
  33.    - the provisions above, a recipient may use your version of this file under
  34.    - the terms of any one of the MPL, the GPL or the LGPL.
  35.    -
  36.    - ***** END LICENSE BLOCK ***** -->
  37.  
  38. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  39.  
  40. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  41.  
  42. <!-- CSS File with all styles specific to the dialog -->
  43. <?xml-stylesheet href="chrome://calendar/skin/dialogOverlay.css" type="text/css"?>
  44.  
  45. <!-- DTD File with all strings specific to the calendar -->
  46. <!DOCTYPE dialog 
  47. [
  48.     <!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/global.dtd" > %dtd1;
  49.     <!ENTITY % dtd2 SYSTEM "chrome://calendar/locale/calendar.dtd" > %dtd2;
  50. ]>
  51.  
  52.  
  53. <dialog
  54.    id="calendar-publishwindow"
  55.    title="&calendar.publish.dialog.title;"
  56.    buttons="accept,cancel"
  57.    ondialogaccept="return onOKCommand();"
  58.    ondialogcancel="return true;"
  59.    onload="loadCalendarPublishDialog()"
  60.    persist="screenX screenY"
  61.    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  62.    xmlns:nc="http://home.netscape.com/NC-rdf#">
  63.     
  64.    
  65.    <!-- Javascript includes -->
  66.    
  67.    <script type="application/x-javascript" src="chrome://calendar/content/calUtils.js"/>
  68.    <script type="application/x-javascript" src="chrome://calendar/content/publishDialog.js"/>
  69.    
  70.    <script type="application/x-javascript" >
  71.    var publishButtonLabel = "&calendar.publish.publish.button;" ;
  72.    var closeButtonLabel = "&calendar.publish.close.button;" ;
  73.    </script>
  74.  
  75.    <!-- Data used in JS from dtd -->
  76.    
  77.    <keyset id="dialogKeys"/>
  78.  
  79.    <!-- The dialog -->
  80.     
  81.    <!-- dialog-box: from dialogOverlay.xul -->
  82.     
  83.    <vbox id="dialog-box" flex="1">  
  84.          <grid>
  85.                 <columns>
  86.                     <column />
  87.                     <column flex="1"/>
  88.                 </columns>
  89.                 
  90.                 <rows>
  91.             
  92.                     <!-- Remote Path -->    
  93.                     <row align="center">
  94.                         <hbox class="field-label-box-class" pack="end">
  95.                             <label control="publish-remotePath-textbox">&calendar.publish.url.label;</label>
  96.                         </hbox>
  97.                         <textbox flex="1" id="publish-remotePath-textbox" oninput="checkURLField()"/>
  98.                     </row>
  99.                     <row align="center">
  100.                         <hbox class="field-label-box-class" pack="end"/>
  101.                         <description>&calendar.publish.example.url.description;</description>
  102.                     </row>
  103.                     
  104.                   </rows>
  105.                </grid>
  106.                     <progressmeter id="publish-progressmeter" mode="determined" value="0"/> 
  107.    </vbox> <!-- dialog-box -->
  108.  
  109. </dialog>
  110.